const encoding/hex.hextable
3 uses
encoding/hex (current package)
hex.go#L15: const hextable = "0123456789abcdef"
hex.go#L28: dst[j] = hextable[v>>4]
hex.go#L29: dst[j+1] = hextable[v&0x0f]
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)